home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / ANTILOG.HDR < prev    next >
Text File  |  1994-04-25  |  874b  |  36 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _AntiLog(nLog, nBase) --> nAntiLog
  8.  
  9. PARAMETERS:
  10.  
  11. nLog  : The logarithm to derive the antilog from
  12. nBase : The base of the logarithm (DEFAULT: 10 - Common Logarithm)
  13.  
  14. SHORT:
  15.  
  16. Calculate the Antilogarithm of a number.
  17.  
  18. DESCRIPTION:
  19.  
  20. _AntiLog() returns the antilog of the given logarithm.
  21.  
  22. NOTE:
  23.  
  24.  
  25.  
  26. EXAMPLE:
  27.  
  28. If the log of a number is x, then the antilog is the base raised to the power
  29. of it's log (Base ^ x = antilog).  This is the reverse of the logarithm.
  30.  
  31. _Log(764.52)    // base 10 log = 2.88
  32.  
  33. _AntiLog(2.88)  // base 10 antilog = 764.52
  34.  
  35. ******************************************************************************/
  36.